:Access Statement
:Access <Private|Public><Instance|Shared><Overridable> <Override> :Access <WebMethod>
The :Access statement is used to specify characteristics for Classes, Properties and Methods.
Overridable/Override
Normally, a Method defined in a higher Class replaces a Method of the same name that is defined in its Base Class, but only for calls made from above or within the higher Class itself (or an Instance of the higher Class). The base method remains available in the Base Class and is invoked by a reference to it from within the Base Class.
However, a Method declared as being Overridable is replaced in situ (i.e. within its own Class) by a Method of the same name in a higher Class if that Method is itself declared with the Override keyword. For further information, see Superseding Base Class Methods.
Nested Classes
The :Access statement is also used to control the visibility of one Class that is defined within another (a nested Class). A Nested Class may be either Private or Public. Note that the :Access Statement must precede the definition of any Class contents.
A Public Nested Class is visible from outside its containing Class and may be used directly in its own right, whereas a Private Nested Class is not and may only be used by code inside the containing Class.
However, methods in the containing Class may return instances of Private Nested Classes and in that way expose them to the calling environment.
WebMethod
Note that :Access WebMethod is equivalent to:
:Access Public :Attribute System.Web.Services.WebMethodAttribute